Verificar status da conta
GEThttps://apisandbox.delbank.com.br/baas/api/v1/customers/:document/bank-accounts
Verifique o status das contas criadas pelo identificador do documento.
Request
Path Parameters
document stringrequired
Documento do cliente
Header Parameters
x-delbank-api-key stringrequired
Chave de API
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
- Example
Schema
documentstring
namestring
emailstring
createdAtdate-time
birthDatedate
typestring
statusstring
documents object[]
addresses object[]
phones object[]
{
"document": "string",
"name": "string",
"email": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"birthDate": "2024-07-29",
"type": "string",
"status": "string",
"documents": [
{
"type": "string",
"status": "string",
"createdAt": "2024-07-29T15:51:28.071Z"
}
],
"addresses": [
{
"publicPlace": "string",
"number": "string",
"zipCode": "string",
"neighborhood": "string",
"complement": "string",
"type": "string",
"city": {
"name": "string",
"uf": "string"
}
}
],
"phones": [
{
"ddd": "string",
"number": "string",
"type": "string"
}
]
}
{
"document": "55850343326",
"name": "teste",
"email": "jjjj@email.com",
"createdAt": "2023-12-14T12:35:17.970Z",
"birthDate": "1979-11-05",
"type": "NATURAL",
"status": "PENDING_DOCUMENTATION",
"documents": [
{
"type": "CNH_FULL",
"status": "PENDING_ANALYSIS",
"createdAt": "2023-12-14T09:35:30.368Z"
},
{
"type": "RG_FULL",
"status": "PENDING_ANALYSIS",
"createdAt": "2023-12-14T09:35:41.786Z"
}
],
"addresses": [
{
"publicPlace": "R QUINZE DE NOVEMBRO",
"number": "427",
"zipCode": "13920000",
"neighborhood": "CENTRO",
"complement": "",
"type": "RESIDECIAL",
"city": {
"name": "PEDREIRA",
"uf": "SP"
}
}
],
"phones": [
{
"ddd": "19",
"number": "19981752077",
"type": "CELL"
}
]
}
Bad request
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://apisandbox.delbank.com.br/baas/api/v1/customers/:document/bank-accounts");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear